home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / demos / velpic / makefile < prev    next >
Makefile  |  1999-09-16  |  209b  |  19 lines

  1.  
  2.  
  3. FFLAGS=-O -Nl50
  4.  
  5. OBJS=/tmp/testpt.o /tmp/id_rgn.o
  6.  
  7. all: $(OBJS)
  8.  
  9. /tmp/testpt.o    : testpt.f
  10.     $(FC) $(FFLAGS) -c testpt.f -o $@
  11.  
  12. /tmp/id_rgn.o    : id_rgn.f
  13.     $(FC) $(FFLAGS) -c id_rgn.f -o $@
  14.  
  15. clean    :
  16.     rm *.o 
  17.  
  18.  
  19.